e36dc1089b57c87d8ebca24383a35e7c089af5e6,app/src/main/java/com/ds/avare/MainActivity.java,MainActivity,onCreate,#Bundle#,67

Before Change


        	setupTab(new TextView(this), getString(R.string.Plates), new Intent(this, PlatesActivity.class), getIntent());
        }
        
        if(0 != (tabItems & (1 << tabAFD))) {
        	setupTab(new TextView(this), getString(R.string.AFD), new Intent(this, AirportActivity.class), getIntent());
        }

        if(0 != (tabItems & (1 << tabFind))) {

After Change


        // We will always show the main chart tab
    	setupTab(new TextView(this), getString(R.string.Main), new Intent(this, LocationActivity.class), getIntent());
        setupTab(new TextView(this), getString(R.string.Plates), new Intent(this, PlatesActivity.class), getIntent());
        setupTab(new TextView(this), getString(R.string.AFD), new Intent(this, AirportActivity.class), getIntent());
        setupTab(new TextView(this), getString(R.string.Find), new Intent(this, SearchActivity.class), getIntent());
        setupTab(new TextView(this), getString(R.string.Plan), new Intent(this, PlanActivity.class), getIntent());